05. Exercise: Create the MiniPaint Project
22 04 AAK Create Project SC V2
Android Developer Documentation
Exercise
In this exercise you are going to create a MiniPaint project.
Create a new Kotlin project called MiniPaint that uses the Empty Activity template.
Open the
app/res/values/colors.xmlfile and add the following two colors. One for the background, and one for drawing.
<color name="colorBackground">#FFFF5500</color>
<color name="colorPaint">#FFFFEB3B</color>
Open
styles.xmlIn the parent of the given
AppThemestyle, replaceDarkActionBarwithNoActionBar. This removes the action bar, so that you can draw fullscreen.
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">